crypto/tls.QUICConn.conn (field)
28 uses
crypto/tls (current package)
quic.go#L44: conn *Conn
quic.go#L161: conn: conn,
quic.go#L170: if q.conn.quic.started {
quic.go#L173: q.conn.quic.started = true
quic.go#L174: if q.conn.config.MinVersion < VersionTLS13 {
quic.go#L177: go q.conn.HandshakeContext(ctx)
quic.go#L178: if _, ok := <-q.conn.quic.blockedc; !ok {
quic.go#L179: return q.conn.handshakeErr
quic.go#L187: qs := q.conn.quic
quic.go#L206: if q.conn.quic.cancel == nil {
quic.go#L209: q.conn.quic.cancel()
quic.go#L210: for range q.conn.quic.blockedc {
quic.go#L213: return q.conn.handshakeErr
quic.go#L219: c := q.conn
quic.go#L235: for q.conn.hand.Len() >= 4 && q.conn.handshakeErr == nil {
quic.go#L236: b := q.conn.hand.Bytes()
quic.go#L239: q.conn.handshakeErr = fmt.Errorf("tls: handshake message of length %d bytes exceeds maximum of %d bytes", n, maxHandshake)
quic.go#L245: if err := q.conn.handlePostHandshakeMessage(); err != nil {
quic.go#L246: q.conn.handshakeErr = err
quic.go#L249: if q.conn.handshakeErr != nil {
quic.go#L250: return quicError(q.conn.handshakeErr)
quic.go#L264: c := q.conn
quic.go#L280: return q.conn.ConnectionState()
quic.go#L291: q.conn.quic.transportParams = params
quic.go#L292: if q.conn.quic.started {
quic.go#L293: <-q.conn.quic.signalc
quic.go#L294: <-q.conn.quic.blockedc
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |